docs(prd): add PRD 0016 — Attack your own infrastructure, safely, and only your own - #65
Merged
Merged
Conversation
… only your own Every other module observes. This one ACTS ON A TARGET, which makes authorization and blast radius the whole design problem rather than a section of it. The value is real — a running application has vulnerabilities emerging from configuration, routing and middleware order that no source analysis reveals, and code-scanner's sast subsystem is explicitly pattern-level and says so. Three hazards dominate. Testing something you do not own — a typo'd hostname, a shared CDN address, a stale DNS record — is a legal problem, not a bug. Breaking the thing you are testing, by fuzzing an endpoint that sends emails or charges cards, means the security tool caused the outage. And findings without reproducible evidence generate work rather than value. Hence: an explicit target allowlist with no scan-what-you-find mode, ownership verification re-checked before every run, refusal with NO OVERRIDE FLAG for unverified targets — an override would be used exactly once, by someone in a hurry, against someone else's server — safety profiles defaulting to the safest, and an abort when the target starts returning 5xx. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
vu1nz Security Review0 finding(s) in PR #? No security issues found. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Specification for the
pentest-enginecore module, listed inPRD.mdand not yet specified.Every other module observes. This one ACTS ON A TARGET, which makes authorization and blast radius the whole design problem rather than a section of it.
The value is real — a running application has vulnerabilities emerging from configuration, routing and middleware order that no source analysis reveals, and code-scanner's sast subsystem is explicitly pattern-level and says so.
Three hazards dominate. Testing something you do not own — a typo'd hostname, a shared CDN address, a stale DNS record — is a legal problem, not a bug. Breaking the thing you are testing, by fuzzing an endpoint that sends emails or charges cards, means the security tool caused the outage. And findings without reproducible evidence generate work rather than value.
Hence: an explicit target allowlist with no scan-what-you-find mode, ownership verification re-checked before every run, refusal with NO OVERRIDE FLAG for unverified targets — an override would be used exactly once, by someone in a hurry, against someone else's server — safety profiles defaulting to the safest, and an abort when the target starts returning 5xx.
Spec only — no implementation in this PR.